testsuite: Improve coverage
authorMatthias Clasen <mclasen@redhat.com>
Sat, 31 Oct 2020 03:04:23 +0000 (23:04 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 31 Oct 2020 03:04:23 +0000 (23:04 -0400)
testsuite/gtk/main.c

index 20a3c63083ac790e6bfbc380f8c3d57c13876fc0..d1d3e6ee1b6b457fe2f32f836308400921aa4ad3 100644 (file)
@@ -9,6 +9,21 @@ test_init (void)
   g_assert (gtk_is_initialized () == TRUE);
 }
 
+static void
+test_version (void)
+{
+  g_assert_cmpuint (gtk_get_major_version (), ==, GTK_MAJOR_VERSION);
+  g_assert_cmpuint (gtk_get_minor_version (), ==, GTK_MINOR_VERSION);
+  g_assert_cmpuint (gtk_get_micro_version (), ==, GTK_MICRO_VERSION);
+  g_assert_cmpuint (gtk_get_binary_age (), ==, GTK_BINARY_AGE);
+  g_assert_cmpuint (gtk_get_interface_age (), ==, GTK_INTERFACE_AGE);
+
+ g_assert_null (gtk_check_version (GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION));
+ g_assert_nonnull (gtk_check_version (5, 0, 0));
+ g_assert_nonnull (gtk_check_version (1, 0, 0));
+ g_assert_nonnull (gtk_check_version (3, 1000, 10));
+}
+
 int
 main (int argc, char *argv[])
 {
@@ -18,6 +33,7 @@ main (int argc, char *argv[])
   setlocale (LC_ALL, "C");
 
   g_test_add_func ("/main/init", test_init);
+  g_test_add_func ("/main/version", test_version);
 
   return g_test_run ();
 }